home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / DHTML - Scrollers / doc-title-scroller.izs < prev    next >
Text File  |  2005-09-02  |  2KB  |  76 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Document title Scroller
  4. <!/TITLE>
  5.  
  6. <!BROWSER>FF1+ IE5+ Opr7+<!/BROWSER>
  7.  
  8. <!DESCRIPTION> Scroll your document's title into view (in IE4+ and NS6). Useful, for example, to display long titles. You can configure the scrolling to run just once, or perpetually.
  9. <!/DESCRIPTION> 
  10.  
  11. <!CATEGORY>scrollers<!/CATEGORY>
  12.  
  13. <!SCRIPT>
  14. <!-- START OF SCRIPT -->
  15. <!-- Step 1: Add the following into the <HEAD> section of your page, replacing the default <title> tag: -->
  16. <title>Welcome to Dynamic Drive, your source for DHTML scripts.  </title>
  17. <script>
  18.  
  19. //Document title scroller- By Graeme Robinson (me@graemerobinson.co.uk)
  20. //Exlusive permission granted to Dynamic Drive to include this script in their DHTML archive.
  21. //For full source code, terms of use visit http://www.dynamicdrive.com
  22.  
  23. var repeat=0 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1
  24. var title=document.title
  25. var leng=title.length
  26. var start=1
  27. function titlemove() {
  28.   titl=title.substring(start, leng) + title.substring(0, start)
  29.   document.title=titl
  30.   start++
  31.   if (start==leng+1) {
  32.     start=0
  33.     if (repeat==0)
  34.     return
  35.   }
  36.   setTimeout("titlemove()",140)
  37. }
  38. if (document.title)
  39. titlemove()
  40. </script>
  41. <!-- END OF SCRIPT -->
  42. <!/SCRIPT>
  43.  
  44. <!PREVIEW>
  45. <!-- START OF SCRIPT -->
  46.  
  47. <!-- Step 1: Add the following into the <HEAD> section of your page, replacing the default <title> tag: -->
  48. <title>Welcome to Dynamic Drive, your source for DHTML scripts.  </title>
  49. <script>
  50.  
  51. //Document title scroller- By Graeme Robinson (me@graemerobinson.co.uk)
  52. //Exlusive permission granted to Dynamic Drive to include this script in their DHTML archive.
  53. //For full source code, terms of use visit http://www.dynamicdrive.com
  54.  
  55. var repeat=0 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1
  56. var title=document.title
  57. var leng=title.length
  58. var start=1
  59. function titlemove() {
  60.   titl=title.substring(start, leng) + title.substring(0, start)
  61.   document.title=titl
  62.   start++
  63.   if (start==leng+1) {
  64.     start=0
  65.     if (repeat==0)
  66.     return
  67.   }
  68.   setTimeout("titlemove()",140)
  69. }
  70. if (document.title)
  71. titlemove()
  72. </script>
  73. <!-- END OF SCRIPT -->
  74. <!/PREVIEW>
  75.  
  76. <!RELATED>NONE<!/RELATED>